math/big.nat.montgomery (method)
10 uses
math/big (current package)
nat.go#L216: func (z nat) montgomery(x, y, m nat, k Word, n int) nat {
nat.go#L1254: powers[0] = powers[0].montgomery(one, RR, m, k0, numWords)
nat.go#L1255: powers[1] = powers[1].montgomery(x, RR, m, k0, numWords)
nat.go#L1257: powers[i] = powers[i].montgomery(powers[i-1], powers[1], m, k0, numWords)
nat.go#L1271: zz = zz.montgomery(z, z, m, k0, numWords)
nat.go#L1272: z = z.montgomery(zz, zz, m, k0, numWords)
nat.go#L1273: zz = zz.montgomery(z, z, m, k0, numWords)
nat.go#L1274: z = z.montgomery(zz, zz, m, k0, numWords)
nat.go#L1276: zz = zz.montgomery(z, powers[yi>>(_W-n)], m, k0, numWords)
nat.go#L1282: zz = zz.montgomery(z, one, m, k0, numWords)
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |